home *** CD-ROM | disk | FTP | other *** search
/ Meeting Pearls 4 / Meeting Pearls Vol. IV (1996)(GTI - Schatztruhe)[!].iso / Pearls / etech / GALer20 / Examples / Gatter.pld < prev    next >
Text File  |  1993-11-12  |  599b  |  33 lines

  1. GAL16V8               first line : used type of GAL
  2. Bsp.1                 second line: any text (max. 8 character)
  3.  
  4. B  C   D   E   F  G  H  I  J  GND
  5. K  NC  NC  NC  Z  Y  X  W  A  VCC     
  6.  
  7.  
  8.  W = A * B * C
  9. /X = D * E
  10.  Y = F + G
  11.  Z = H * I + J * K
  12.  
  13.  
  14.  
  15. DESCRIPTION:
  16.  
  17. format of the boolean equations:
  18.  
  19.   output pin = boolean function of input and output pins
  20.  
  21.   in this mode is no feedback of output pins allowed, this means that a output
  22.   pin can not be a function of output pins again
  23.  
  24.  
  25.  *: AND
  26.  +: OR
  27.  /: NEGATION
  28.  
  29.  Example: Pin Y is HIGH if pin F OR pin G is HIGH, else Y will be LOW.
  30.  
  31.       Y = F + G
  32.  
  33.